home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / NextAnswers / EOFDirtyDoc / Controller.h next >
Text File  |  1995-04-19  |  588b  |  27 lines

  1. /*
  2.  * Controller.h
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  *
  8.  * Written by Kenny Leung, NeXT Technical Support
  9.  *
  10.  */
  11.  
  12. #import <objc/Object.h>
  13. #import <eointerface/EOController.h>
  14. #import <eointerface/EOAssociation.h>
  15.  
  16. @interface Controller:Object
  17. {
  18.     id    controller;
  19.     id    docWindow;
  20.     id    discardButton;
  21. }
  22.  
  23. - discard:sender;
  24. - (void)controller:(EOController *)aController associationDidBeginEditing:(EOAssociation *)association;
  25.  
  26. @end
  27.